/* General Styles */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 76px;
  background: #f8f9fa;
}

/* Custom Styles for NavBar */
.navbar-brand img {
  height: 75px; /* Increase logo height */
  width: auto; /* Maintain aspect ratio */
  transition: height 0.3s; /* Smooth transition */
}

.navbar {
  background: linear-gradient(
    135deg,
    #4caf50,
    #1e88e5
  ); /* Navbar background color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow */
  padding: 0.5rem 1rem; /* Adjust navbar padding */
}

.navbar-nav .nav-link {
  color: #fff; /* Link color */
  font-weight: 500; /* Medium font weight */
  margin-left: 20px; /* Space between links */
}

.navbar-nav .nav-link:hover {
  color: #ff9900; /* Hover color */
}

.navbar-toggler {
  border: none; /* Remove border */
}

.navbar-toggler:focus {
  box-shadow: none; /* Remove focus outline */
}

/* Ensure navbar height remains consistent */
.navbar-brand {
  display: flex;
  align-items: center;
  height: 60px; /* Match logo height */
}

/* End NavBar */

/* Custom Styles */

.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #4caf50;
}

.contact-section p {
  font-size: 18px;
  color: #555;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

.contact-form .form-control:focus {
  border-color: #4caf50;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.contact-form textarea {
  resize: none;
}

.contact-form .btn-primary {
  background: #4caf50;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s;
}

.contact-form .btn-primary:hover {
  background: #0056b3;
}

.contact-info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 100px;

}

.contact-info h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.contact-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  margin-top: 20px;
}

.contact-info i {
  font-size: 24px;
  color: #4caf50;
  margin-right: 10px;
}

.contact-info p a {
    text-decoration: none;
}

.social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #000; /* Icon color */
  }
  
  .social-icons a:hover {
    color: #007bff; /* Hover effect color */
  }
  

.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}



/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #4caf50, #1e88e5);
    color: #f8f9fa;
  }
  
  .footer-logo {
    max-width: 200px;
  }
  
  .footer-statement {
    font-size: 14px;
    color: #ddd;
    margin-top: 10px;
  }
  
  .footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .footer ul {
    list-style-type: none;
    padding: 40px 0 0;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }
  
  
  .footer ul li {
    margin-bottom: 8px;
  }
  
  .footer ul li a {
    color: #f8f9fa;
    text-decoration: none;
  }
  
  .footer ul li a:hover {
    color: #333 !important;
  }
  
  .footer .social-icons {
      padding-top: 40px !important;
  
  }
  
  .footer .social-icons a {
    text-decoration: none;
    color: #f8f9fa;
    font-size: 20px;
  }
  
  .footer .social-icons a:hover {
    color: #333 !important;
  }
  
  .footer .text-center {
    margin-top: 20px;
    font-size: 14px;
  }